作者:Grey 原文地址:Linux下安装Nginx 版本 Nginx:1.20.1 操作系统:CentOS 7 安装必要工具和依赖 yum -y install wget gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-dev ...
分类:
系统相关 时间:
2021-06-03 18:15:31
阅读次数:
0
linux下python3.6.7安装yum -y install gcc yum -y install wget openssl openssl-develtar xvf Python-3.6.7.tgzcd Python-3.6.7/ ./configure --prefix=/usr/loca ...
分类:
编程语言 时间:
2021-06-03 18:13:34
阅读次数:
0
测试 public static void main(String[] args) { // 将 pojoList 转换至 dtoList 中 List<Student01> dtoList = new ArrayList<>(); List<Student01> pojoList = new Ar ...
分类:
其他好文 时间:
2021-06-03 18:00:12
阅读次数:
0
操作系统 $ cat /proc/version CPU $ cat /proc/cpuinfo | grep "model name" 按照model name 对结果进行筛选 内存 $ cat /proc/meminfo 各分区的使用情况 $ df -h 内存区和交换区的使用情况 $ free ...
分类:
系统相关 时间:
2021-06-03 17:52:10
阅读次数:
0
查看系统网络情况 netstat ? 基本语法 netstat [选项] ? 选项说明 -an 按一定顺序排列输出 -p 显示哪个进程在调用 应用案例 请查看服务名为 sshd 的服务的信息。 ? Netstat –anp | grep sshd ? 如果我们希望查看当前系统有哪些端口在监听 net ...
分类:
Web程序 时间:
2021-06-03 17:47:48
阅读次数:
0
#CentOS7的yum源中默认好像是没有mysql 1.1 下载mysql的repo源 cd /usr/local wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 1.2 安装mysql-community-r ...
分类:
数据库 时间:
2021-06-03 17:43:34
阅读次数:
0
1.环境安装 yum -y install compat-libcap1 compat-libstdc++-33 ksh libaio-devel libstdc++-develrpm -ivh oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm ...
分类:
数据库 时间:
2021-06-02 20:49:42
阅读次数:
0
背景:修复服务器内核漏洞 当安装了一个发行版,它包含了一个特定版本的内核,如下这台服务器内核则为:Linux 3.10.0-1160.el7.x86_64 # uname -sr Linux 3.10.0-1160.el7.x86_64 内核升级操作步骤如下: 安装elrepo 载入公钥,安装epr ...
分类:
其他好文 时间:
2021-06-02 20:45:53
阅读次数:
0
var intList = new List<int>() { 1 }; var readOnlyList = new ReadOnlyCollection<int>(intList); var immutableList = intList.ToImmutableList(); Console.F ...
1.下载python3.6包 wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tar.xz 2.安装相关依赖 yum install gcc-c++ yum install pcre pcre-devel yum install z ...
分类:
编程语言 时间:
2021-06-02 20:23:58
阅读次数:
0